home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / net / netEther.c < prev    next >
C/C++ Source or Header  |  1992-12-18  |  1KB  |  55 lines

  1. /* 
  2.  * netEther.c --
  3.  *
  4.  *    Contains ethernet specific definitions.
  5.  *
  6.  * Copyright 1990 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /cdrom/src/kernel/Cvsroot/kernel/net/netEther.c,v 1.3 92/06/03 22:47:54 voelker Exp $ SPRITE (Berkeley)";
  18. #endif /* not lint */
  19.  
  20. #include <netInt.h>
  21.  
  22.  
  23. Net_Address    netEtherBroadcastAddress;
  24.  
  25.  
  26. /*
  27.  *----------------------------------------------------------------------
  28.  *
  29.  * NetEtherInit --
  30.  *
  31.  *    Initializes stuff for the ethernet.
  32.  *
  33.  * Results:
  34.  *    None.
  35.  *
  36.  * Side effects:
  37.  *    None.
  38.  *
  39.  *----------------------------------------------------------------------
  40.  */
  41.  
  42. void
  43. NetEtherInit()
  44. {
  45.     static Net_EtherAddress    tmp = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
  46.     ReturnStatus status;
  47.  
  48.     status = Net_SetAddress(NET_ADDRESS_ETHER, (Address) &tmp, 
  49.     &netEtherBroadcastAddress);
  50.     if (status != SUCCESS) {
  51.     panic("NetEtherInit: Net_SetAddress failed\n");
  52.     }
  53. }
  54.  
  55.